page.tsx 278 B

1234567891011121314
  1. import type { FC } from 'react'
  2. import React from 'react'
  3. import type { IMainProps } from '@/app/components/share/chat'
  4. import Main from '@/app/components/share/chatbot'
  5. const Chatbot: FC<IMainProps> = () => {
  6. return (
  7. <Main />
  8. )
  9. }
  10. export default React.memo(Chatbot)